home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 2002 #11
/
Amiga Plus CD - 2002 - No. 11.iso
/
Tools
/
Freeware
/
DiskMaster
/
Rexx
/
DMFontsToo.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
2002-10-27
|
414b
|
20 lines
/* $VER: DMFontsToo.rexx 1.1 (2.10.98) by J. Tierney
DMFontsToo.rexx v1.1
10/2/97 J. Tierney
Function: Selects the ".font", ".metric", and ".otag" files of all selected
files.
Usage: REXX DMFontsToo.rexx
*/
OPTIONS RESULTS
DIRLIST VAR dlist SEL
DO i = 0 TO dlist.name.0
'SELECT' dlist.name.i || '.info' dlist.name.i || '.font' dlist.name.i || '.metric' dlist.name.i || '.otag'
END